home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Visual Database / Visual Foxpro 6.0 (Ent. Edition) / Vf6ent Extractor.EXE / TOOLS / ANALYZER / README.TXT < prev   
Encoding:
Text File  |  1998-05-28  |  1.5 KB  |  28 lines

  1.     Author:                 Calvin Hsia
  2.     emailname:      v-calvh
  3.     Creation Date:  9/28/94
  4.     Description:
  5.         This includes both the formatting and the documenting wizards.
  6.         There will not be a 3.0 version of Foxdoc.
  7.         
  8.     To run the app, you need WZFOXDOC.APP
  9.  
  10.        All the CPP and HPP files are the source code.
  11.        FDKeywrd is the table of keywords.
  12.  
  13.  
  14. The code analyzer is a tool to allow users to navigate through their Foxpro programs.
  15.  
  16. It takes the output from the formatting wizard and presents it in an interactive way. It consists of a single form with a 2 page pageframe.
  17.  
  18. The first page has a listbox displaying all user symbols, and a grid that shows where the currently selected listbox symbol exists within your code. For example, if there's a symbol FOO in your code, you can choose FOO in the listbox, and the grid below will show in which file there is a reference to this symbol, whether it's in a program, menu file, screen file, class library, or database container. If you double-click on the item in the grid, the referenced file is opened for your perusal.
  19.  
  20. There's an Analyzer menu pad which allows you to navigate around your code. Hit Ctrl-N to go to the next occurrence of FOO. While looking in a VCX, you see a line:
  21.  
  22.     FOO=BAR
  23.  
  24. Highlight the BAR with your cursor, then hit Ctrl-D to go to the definition of BAR. Ctrl-R will go to any references.
  25.  
  26. The second page has an outline control that will display either the calling tree hierarchy of your program or the class hierarchy.
  27.  
  28.